@media only screen and (min-width: 780px) and (max-width: 1049px){
	body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 60;
  opacity: 0;
  transform: translateX(0);
    transition: opacity 0.2s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);   /* start fully transparent */
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.3s;
}

/* slide it 350 px left */
.menu-overlay.active {
  transform: translateX(-350px);
  opacity: 1;
  pointer-events: auto;
}



@keyframes shrink-left {
  to {
    opacity: 1;
    transform: translateX(-350px);
    pointer-events: auto;
  }
}

	.main-wrapper{
		position: absolute;
		width: 100%;
	}
	
	.banner{
		background: #F8F6F0;
		position: relative;
		width: 100%;
		height: auto;
		text-align: center;
		z-index: 9;
	}
	
	.banner h3{
		
	}
	
	.header-wrapper{
		width: 100%;
	}
	
	.main-header{
		position: relative;
		background-color: rgb(172, 19, 242);
		z-index: 50;
		width: 100%;
	}
	
	.web-header{
		position: relative;
		width: 93.5%;
		margin: 0 auto;
		height: 100px;
	}
	
	.main-navbar{
		position: relative;
		float: right;
		margin-top: 42px;
		display: none;
	}
	.main-navbar ul{
		display: flex;
		gap: 25px;
	}
	.main-navbar li{
		position: relative;
		display: inline-block;
	}
	.main-navbar a{
		font-family: Ordinary Notes;
		color: white;
		font-size: 22px;
		text-decoration: none;
	}
	.main-navbar a:hover{
		font-family: Ordinary Notes;
		color: purple;
		font-size: 22px;
		text-decoration: none;
		text-shadow: 0 0 10px rgba(170, 0, 255, 0.7),
        0 0 20px rgba(128, 0, 128, 0.5);
	}
	
	.sub-navbar{
		position: absolute;
		margin-left: 22.5%;
		z-index: 51;
		margin-top: 35px;
		display: none;
		flex-direction: column;
		text-align: center;
		background-color: rgba(51, 51, 51, 0.8);
		height: 55px;
		border: 1px solid rgba(68, 68, 68, 0.5);
		border-radius: 10px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 1);
		opacity: 0;
		transform: translateY(-20px);
		transition: opacity 0.5s, transform 0.5s;
		pointer-events: none;
	}
	
	.sub-navbar.active{
		display: flex;
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	
	.separation-line {
		border-right: 2px solid rgba(247, 247, 247, 0.2);
		border-radius: 1px;
		padding-right: 20px;
}
	.sub-navbar li{
		margin-left: 6px;
		margin-right: 6px;
		margin-bottom: -20px;
	}
	
	.arrow {
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid #fff;
		margin-left: 5px;
		transition: transform 0.2s ease-in-out;
		cursor: pointer;
	}
	
	.arrow.active {
	  transform: rotate(180deg);
	}
	
	.hamburger-menu {
  position: relative;
  float: right;
}

.hamburger {
	z-index: 40;
position: absolute;
  width: 30px;
  height: 24px;
  cursor: pointer;
  padding: 10px;
  margin-left: -30px;
   margin-top: 27px;
}

.hamburger_lines {
	position: absolute;
  display: block;
  width: 27px;
  height: 4px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

.hamburger_lines:nth-child(1) {
  top: 4px;
}

.hamburger_lines:nth-child(2) {
  top: 17px;
  transform: translateY(-50%);
}

.hamburger_lines:nth-child(3) {
  bottom: 4px;
}

.hamburger.active .hamburger_lines:nth-child(1) {
  top: 11.5px;
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger_lines:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger_lines:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger-nav-links {
	z-index: 10;
  list-style: none;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  height: calc(100dvh - 45px);
  width: 300px;
  background-color: rgb(172, 19, 242);
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 45px;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out, visibility 0.5s;
  overflow-y: auto;
}

.hamburger-nav {
  margin-bottom: -10px;
  display: flex;
  border-bottom: 2px solid #ccc;
  padding-bottom: 20px; /* adjust the padding as needed */
}

.hamburger-nav:nth-child(1) {
	border-bottom: 2px solid #ccc;
	margin-top: 15px;
}

.hamburger-nav:nth-child(2) {
	border-bottom: none;
	margin-top: 30px;
}

.hamburger-nav:nth-child(4) {
	border-bottom: 2px solid #ccc;
	margin-top: 28px;
	margin-bottom: 28px;
}


.hamburger-nav:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}

.hamburger-nav-links a {
  text-decoration: none;
  font-family: Ordinary Notes;
  color: white;
  font-size: 30px;
  text-align: left;
}

.hamburger-nav-links a:hover{
	font-family: Ordinary Notes;
		color: purple;
		font-size: 30px;
		text-decoration: none;
		text-shadow: 0 0 10px rgba(170, 0, 255, 0.7),
        0 0 20px rgba(128, 0, 128, 0.5);
}

.hamburger-nav-links.show {
  transform: translateX(0);
  visibility: visible;
}

.hamburger_arrow {
	display: inline-block;
		width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  margin-left: 5px;
	}
	
	.hamburger-sub-navbar {
		padding-left: 20px;
		border-bottom: 2px solid #ccc;
		margin-top: -20px;
	}
	
	.hamburger-sub-navbar li {
		list-style: none;
	}
	
	.hamburger-sub-navbar li:last-child {
		margin-bottom: 20px;
	}
	
	.hamburger-sub-navbar li a {
		font-size: 22px;
		width: 100%;
	}
	
	.hamburger-sub-navbar li a:hover{
		font-family: Ordinary Notes;
		color: purple;
		font-size: 22px;
		text-decoration: none;
		text-shadow: 0 0 10px rgba(170, 0, 255, 0.7),
        0 0 20px rgba(128, 0, 128, 0.5);
	}
	
	.hamburger-social-icons{
		overflow-x: hidden;
		position: relative;
		text-align: center;
		margin-top: 40px;
		margin-bottom: 15px;
		list-style: none;
	}
	.hamburger-social-icons li{
		display: inline-block;
		color: white;
	}
	.hamburger-social-icons li:not(:last-child) {
		margin-right: 20px;
	}
	.hamburger-social-icons li:nth-child(3){
		margin-left: -2px;
	}
	.hamburger-social-icons a {
		font-size: 23px;
		color: white;
	}
	.hamburger-social-icons a:hover {
		text-shadow: none;
		font-size: 23px;
        color: pink; /*For IE8 and earlier */
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
	}
	
	/* Sticky Hamburger Navbar */
	.sticky-hamburger-menu {
  position: relative;
  float: right;
}

.sticky-hamburger {
	z-index: 40;
position: absolute;
  width: 30px;
  height: 24px;
  cursor: pointer;
  padding: 10px;
  margin-left: -30px;
   margin-top: 18px;
}

.sticky-hamburger_lines {
	position: absolute;
  display: block;
  width: 27px;
  height: 4px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

.sticky-hamburger_lines:nth-child(1) {
  top: 4px;
}

.sticky-hamburger_lines:nth-child(2) {
  top: 17px;
  transform: translateY(-50%);
}

.sticky-hamburger_lines:nth-child(3) {
  bottom: 4px;
}

.sticky-hamburger.active .sticky-hamburger_lines:nth-child(1) {
  top: 11.5px;
  transform: rotate(45deg) translate(5px, 5px);
}

.sticky-hamburger.active .sticky-hamburger_lines:nth-child(2) {
  opacity: 0;
}

.sticky-hamburger.active .sticky-hamburger_lines:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.sticky-hamburger-nav-links {
	height: calc(100dvh - 85px);
  list-style: none;
  z-index: 10;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  background-color: rgb(172, 19, 242);
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 5px;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out, visibility 0.5s;
  overflow-y: auto;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.sticky-hamburger-nav {
  margin-bottom: 10px;
  display: flex;
  margin-top: 25px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 20px; /* adjust the padding as needed */
  overflow: hidden;
}

.sticky-hamburger-nav:nth-child(2) {
	border-bottom: none;
}

.sticky-hamburger-nav:last-child {
  border-bottom: none;
  margin-bottom: -130px;
}

.sticky-hamburger-nav-links a {
  text-decoration: none;
  font-family: Ordinary Notes;
  color: white;
  font-size: 30px;
  width: 100%;
  text-align: left;
}

.sticky-hamburger-nav-links a:hover{
	font-family: Ordinary Notes;
		color: purple;
		font-size: 30px;
		text-decoration: none;
		text-shadow: 0 0 10px rgba(170, 0, 255, 0.7),
        0 0 20px rgba(128, 0, 128, 0.5);
}

.sticky-hamburger-nav-links.show {
  transform: translateX(0);
  visibility: visible;
}

.sticky-hamburger_arrow {
	display: inline-block;
		width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  margin-left: 5px;
	}
	
	.sticky-hamburger-sub-navbar {
		padding-left: 20px;
		border-bottom: 2px solid #ccc;
		margin-top: -20px;
	}
	
	.sticky-hamburger-sub-navbar li {
		list-style: none;
	}
	
	.sticky-hamburger-sub-navbar li:last-child {
		margin-bottom: 20px;
	}
	
	.sticky-hamburger-sub-navbar li a {
		font-size: 22px;
		width: 100%;
	}
	
	.sticky-hamburger-sub-navbar li a:hover{
		font-family: Ordinary Notes;
		color: purple;
		font-size: 22px;
		text-decoration: none;
		text-shadow: 0 0 10px rgba(170, 0, 255, 0.7),
        0 0 20px rgba(128, 0, 128, 0.5);
	}
	
	.sticky-hamburger-social-icons{
		overflow-x: hidden;
		position: relative;
		text-align: center;
		margin-top: 30px;
		list-style: none;
		margin-bottom: -85px;
	}
	.sticky-hamburger-social-icons li{
		display: inline-block;
		color: white;
	}
	.sticky-hamburger-social-icons li:nth-child(3){
		margin-left: -2px;
	}
	.sticky-hamburger-social-icons li:not(:last-child) {
		margin-right: 20px;
	}
	.sticky-hamburger-social-icons a {
		font-size: 23px;
		color: white;
	}
	.sticky-hamburger-social-icons a:hover {
		text-shadow: none;
		font-size: 23px;
        color: pink; /*For IE8 and earlier */
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
	}
	
	/*TEST*/
	
	.pilsung-logo{
		margin-top: 10px;
		margin-bottom: 10px;
		height: 80px;
	}
	
	/* Sticky Header */
	.sticky-main-header{
		z-index: 39;
		position: fixed;
		background-color: rgba(216, 29, 245, 0.5);
		width: 100%;
		top: -100px;
		transition: top 0.5s ease-in-out;
	}
	
	.sticky-main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background-image: linear-gradient(rgba(172, 19, 242, 0.3), rgba(172, 19, 242, 0.3));
  filter: blur(5px);
  transform: scale(1.1);
  z-index: -1;
  backdrop-filter: blur(5px);
  overflow: hidden;
}
	
	.sticky-main-header.show{
		top: 0;
	}
	
	
	@keyframes slideDown {
		0% {
			transform: translateY(-100%);
		}
		100% {
			transform: translateY(0);
		}
	}
	
	.sticky-web-header{
		position: relative;
		width: 93.5%;
		margin: 0 auto;
		height: 80px;
	}
	
	.sticky-pilsung-logo{
		margin-top: 8px;
		margin-bottom: 8px;
		height: 65px;
	}
	
	.sticky-main-navbar{
		position: relative;
		float: right;
		margin-top: 30px;
		display: none;
	}
	.sticky-main-navbar ul{
		display: flex;
		gap: 25px;
	}
	.sticky-main-navbar li{
		position: relative;
		display: inline-block;
	}
	.sticky-main-navbar a{
		font-family: Ordinary Notes;
		color: white;
		font-size: 22px;
		text-decoration: none;
	}
	.sticky-main-navbar a:hover{
		font-family: Ordinary Notes;
		color: purple;
		font-size: 22px;
		text-decoration: none;
		text-shadow: 0 0 10px rgba(170, 0, 255, 0.7),
        0 0 20px rgba(128, 0, 128, 0.5);
	}
	.sticky-sub-navbar{
		position: absolute;
		margin-left: 22.5%;
		z-index: 99;
		margin-top: 35px;
		display: none;
		flex-direction: column;
		text-align: center;
		background-color: rgba(51, 51, 51, 0.8);
		height: 55px;
		border: 1px solid rgba(68, 68, 68, 0.5);
		border-radius: 10px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 1);
		opacity: 0;
		transform: translateY(-20px);
		transition: opacity 0.5s, transform 0.5s;
		pointer-events: none;
	}
	.sticky-sub-navbar.active{
		display: flex;
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	
	.sticky-separation-line {
		border-right: 2px solid rgba(247, 247, 247, 0.2);
		border-radius: 1px;
		padding-right: 20px;
}
	.sticky-sub-navbar li{
		margin-left: 6px;
		margin-right: 6px;
		margin-bottom: -20px;
	}
	
	.sticky-arrow {
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid #fff;
		margin-left: 5px;
		transition: transform 0.2s ease-in-out;
		cursor: pointer;
	}
	
	.sticky-arrow.active {
	  transform: rotate(180deg);
	}
	
	/* Page */
	.wrapper{
		position: relative;
		max-height: auto;
		margin-bottom: -80px;
	}
	
	.page {
		position: relative;
		padding-top: 20px;
		padding-bottom: 100px;
		width: 100%;
		transition: transform 0.5s ease-in-out;
	}
	
	.slideshow-container {
    position: relative;
    width: 100%;
    height: auto; /* Increased height to accommodate main image and thumbnails */
	margin-top: -20px;
}

		.slides {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: -20px;
  margin-bottom: -3px;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  touch-action: auto;
}

.slide-container {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
  opacity: 0;
  flex-shrink: 0; /* Added flex-shrink: 0 */
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.slide:first-child {
    opacity: 1;
	overflow: hidden;
}

 @keyframes slide-out-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slide-in-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-out-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.slide-out-left {
  animation: slide-out-left 0.3s;
}

.slide-in-left {
  animation: slide-in-left 0.3s;
}

.slide-out-right {
  animation: slide-out-right 0.3s;
}

.slide-in-right {
  animation: slide-in-right 0.3s;
}

.thumbnail-container-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 820px;
  height: 100vh;
  margin: 0 auto;
  z-index: 1;
}

.thumbnail-container {
  position: relative;
  overflow: visible;
  transition: none;
  max-width: 100%;
  text-align: center;
  margin-top: 3px;
}

.thumbnail {
  flex-basis: 0;
  flex-grow: 1;
  width: calc(20% - 1px);
  max-width: 200px;
  position: relative;
  display: inline-block;
  transform: scale(1);
  margin: 10px 5px; /* Update this line */
  overflow: visible;
  transition: transform 0.2s ease-in-out, margin 0.2s ease-in-out, background-size 0.2s ease-in-out;
}

.thumbnail.selected {
	position: relative;
  transform: scale(1.15, 1.04);
  z-index: 1;
  transition: transform 0.2s ease-in-out, margin 0.2s ease-in-out, background-size 0.2s ease-in-out;
  margin: 0 20px;
}

.thumbnail:nth-child(1) {
margin-left: 2px;
}

.thumbnail.selected:nth-child(1) {
margin-left: 18px;
}

.thumbnail:nth-child(4) {
margin-right: 0px;
}

.thumbnail.selected:nth-child(4) {
margin-right: 10px;
}

.thumbnail.selected .image-container {
  transform: scale(1);
  background-size: 210px 120px;
  background-position: center;
    transition: transform 0.2s ease-in-out, margin 0.2s ease-in-out, background-size 0.2s ease-in-out;

}

.image-container {
  overflow: hidden;
  width: 100%;
  height: 100px;
  background-size: 240px 140px;
  background-position: center;
  border-radius: 10px;
  transform-origin: center;
  cursor: pointer;
      transition: transform 0.2s ease-in-out, margin 0.2s ease-in-out, background-size 0.2s ease-in-out;


}

.thumbnail svg {
  position: absolute;
  visibility: hidden;
  top: -7px;
  left: -5px;
  pointer-events: none;
  z-index: 0;
  width: 106.5%; /* Increased width */
  height: 119%; /* Increased height */
}

.thumbnail svg rect {
  stroke-dasharray: 630;
  stroke-dashoffset: 630;
}

.thumbnail.selected svg rect {
	visibility: visible;
  animation: draw-path 13s linear forwards;
}

@keyframes draw-path {
  0% {
    stroke-dashoffset: 630; /* adjust this value */
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.thumbnail.selected svg rect.paused {
  animation-play-state: paused;
}

.pause-play-button {
  position: absolute;
  bottom: 5px;
  left: 6px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.thumbnail.selected .pause-play-button {
   opacity: 1;
}

.pause-play-button i {
  font-size: 20px;
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#pause-icon {
  display: block;
}

#play-icon {
	display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
}

.home-section1{
		margin: 0 auto;
		position: relative;
    width: 100vw;
	text-align: center;
	}
	.home-section2 {
  position: relative;
  width: 94%;
  display: block;
  justify-content: center;
  margin: 0 auto;
}
	
.home-section2 h1{
	position: relative;
	text-align: center;
	font-size: 45px;
	margin-top: 15px;
}

.home-section2 p{
	position: relative;
	text-align: left;
	font-size: 20px;
}

.twitch-heading{
		position: relative;
		text-align: center;
		font-size: 45px;
		margin-bottom: 10px;
		margin-top: 30px;
	}
	
	.youtube-feed {
	position: relative;
	flex-direction: column;   /* stack the heading and the list */
    align-items: center; 
	width: 94%;
	display: block;
	justify-content: center;
	margin: 0 auto;
	overflow: hidden;
}

	.youtube-feed ul {
	position: relative;
  display: flex;
    flex-wrap: wrap;
    gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
	.youtube-feed li {
  position: relative;         
  flex: 0 0 auto;
  width: 100%; /* Let the grid cell control the width */
  cursor: pointer;
  overflow: hidden;      /* <-- add this */
  border-radius: 20px; 
	}
	
	.youtube-feed a {
    position: absolute;
	width: 98.8%;	/* sit on top of the image */
	padding-left: 10px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(28px, calc(4.5vw - 10px), 32px);
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,               /* fully transparent at the top */
        rgba(0,0,0,0.7) 40%,            /* start darkening earlier */
        rgba(0,0,0,0.9) 100%  
    );
	min-height: 50px;
	}
	.youtube-feed li a{
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 0 0 20px 20px; 
	z-index: 1;
}

/* 1️⃣  Add an overlay pseudo‑element that lives above the image  */
.youtube-feed li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);          /* invisible by default */
    transition: background 0.2s ease;
    z-index: 1;                           /* above the image */
    border-radius: 20px;  /* match the image corners */
}

/* 2️⃣  Darken the overlay on hover  */
.youtube-feed li:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.youtube-feed img {
	display: block;       /* removes any extra space below */
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	border-radius: 20px;
	margin-bottom: -20%;
}

.youtube-feed i {
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* offsets its own size */
  font-size: 65px;
  color: white;
  z-index: 2;
}

.youtube-feed li a:hover {
	color: #FF007F;
}
.youtube-feed li:hover a { 
	color: #FF007F;
}

.youtube-feed li.hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.youtube-feed li.hover a {
  color: #FF007F;
}

.youtube-feed h1 {
	position: relative;
	text-align: center;
	font-size: 45px;
	margin-top: 30px;
	margin-bottom: 3px;
}

.twitch {
		position: relative;
		width: 94%;
		margin: 0 auto;
	}

	#twitch-embed {
		height: 490px;
		width: 100%;
		margin-bottom: 10px;
	}

	.twitch iframe {
		border-radius: 15px;
	}

	.twitch-chat{
		height: 350px;
		background-color: #fff;
		width: 100%;
	}
	
	.footer-wrapper{
		position: fixed;
		height: 80px;
		bottom: 0;
		width: 100%;
		background-color: rgb(172, 19, 242);
		z-index: 39;
		overflow: hidden;
	}
	
	.footer{
		position: relative;
		width: 93.5%;
		color: #fff;
		margin: 0 auto;
		padding: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.footer-text{
		text-align: left;
		font-size: 18px;
		font-family: Ordinary Notes;
		text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	}
	.social-icons{
		position: relative;
		float: right;
		margin-top: -40px;
		list-style: none;
	}
	.social-icons li{
		display: inline-block;
		font-size: 20px;
		color: white;
	}
	.social-icons li:nth-child(3){
		margin-left: -2px;
	}
	.social-icons li:not(:last-child) {
		margin-right: 20px;
	}
	.social-icons a {
		color: white;
	}
	.social-icons a:hover {
        color: pink; /*For IE8 and earlier */
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
	}
	.section-header{
		font-family: Bragga;
		font-style: italic;
		font-size: 38px;
		transform: scaleY(1.2);
		background-image: url('/images/starry-header-background.png');
		background-size: fill;
		background-repeat: no-repeat;
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-stroke: 1.5px #000;
	}
}